home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / bgiclip.com / CLIPSHOW.DOC < prev    next >
Encoding:
Text File  |  1990-11-07  |  2.5 KB  |  64 lines

  1. ===========================================================================
  2.  
  3.                                   CLIPSHOW
  4.  
  5.                              by Peter Donnelly
  6.                               1301 Ryan Street
  7.                                 Victoria BC
  8.                                Canada V8T 4Y8
  9.  
  10. ===========================================================================
  11.  
  12. This little program is for reviewing your collection of BGI clip art; that
  13. is, image files created with CLIP, TP-ICON, or a similar program and
  14. suited for use with the PutImage procedure/function in Turbo Pascal and
  15. Turbo C.
  16.  
  17. To run the program, enter a filespec on the command line. A directory path
  18. and the usual wildcards are accepted.
  19.  
  20. Optionally you may specify a palette file as the second argument. It is
  21. assumed that this file is in the same directory as the image file(s); if
  22. you don't specify an extension, ".PAL" is appended. If you don't specify a
  23. palette at all, the program will attempt to match each image file with a
  24. ".PAL" file; for example, it will try to display "ROSE.IM" with the color
  25. data from a file called "ROSE.PAL". If there is no matching palette file,
  26. or if it is the wrong type for the present display mode, the default colors
  27. are used. (See CLIP.DOC for more information on palette files.)
  28.  
  29. By default the program will run in VGA 640x480 resolution if your system
  30. supports it, or in EGA 640x350 otherwise. You can force it into EGA mode by
  31. entering "/e" on the command line as the last argument.
  32.  
  33. EXAMPLES:
  34. ---------
  35.  
  36.    C:>clipshow daisy
  37.  
  38. The program will display "DAISY" from the current directory and will set
  39. the colors from "DAISY.PAL" if that palette file exists and is the right
  40. type for the default display mode.
  41.  
  42.    C:>clipshow \images\*.im blossoms /e
  43.  
  44. The program will display all files in C:\IMAGES that have the extension
  45. ".IM", using the palette file "BLOSSOMS.PAL" from the same directory, and
  46. will run in EGA mode.
  47.  
  48. The program looks for any BGI-format image files that match the filespec.
  49. To weed out non-image files, CLIPSHOW checks the file size against the image
  50. size calculated from the first two words in the file; so it will not read a
  51. file that has been appended to.
  52.  
  53. To proceed to the next image, strike <PgDn> or <Enter>. To quit the
  54. program, strike <Esc>, <Alt-X>, or <F10>.
  55.  
  56.  
  57. COPYRIGHT NOTICE
  58. ----------------
  59.  
  60. CLIPSHOW was created with Turbo Pascal, copyright (c) Borland International
  61. 1987, 1988.
  62.  
  63. ===========================================================================
  64.